release: cut v0.75.0#8
Merged
Merged
Conversation
Closes the v0.72-v0.75 gap with the rest of the protowire-* stack. Wraps protowire-cpp v0.75.0's PXF v0.72-series feature set through the nanobind FFI: - @<name> / @entry / @table directive grammar (via Result.directives and Result.tables accessors) - Schema reserved-name validator (pxf.validate_descriptor + pxf.Violation, draft §3.13) with UnmarshalOptions.skip_validate - TableReader streaming + bind_row per-row binding The Python port jumps directly from v0.70.0 to v0.75.0, matching the active wire revision rather than re-tagging the intermediate versions Go and Java cut along the way.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Third and final PR of the Python v0.72–v0.75 catch-up. Bumps `pyproject.toml` and `version` from `0.70.0` to `0.75.0` and rolls the [Unreleased] CHANGELOG entries into a dated [0.75.0] section.
Wraps the `protowire-cpp` v0.75.0 PXF v0.72-series feature set, landed across PRs #6 / #7:
The Python port jumps directly from v0.70.0 to v0.75.0, matching the active wire revision rather than re-tagging the intermediate versions Go and Java cut along the way.
Post-merge
After this PR lands, tag the merge commit. The `publish.yml` workflow fires on `v*` tag push and runs the full wheel matrix + PyPI publish via OIDC:
```bash
git tag -a v0.75.0 -m "v0.75.0 — PXF v0.72-series feature catch-up"
git push origin v0.75.0
```
The GitHub release page entry can be created from the tag once `publish.yml` finishes uploading wheels.
Test plan